/*                                        intex_do.css                                              */
/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

body {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  background-color: #f9f9f9;
  color: #333;
}

/*                                        SUB MENU ON PRODUCTS                                      */
/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    background-color: var(--brand-blue-dark);
    margin-top: 0;
    border: 1px solid #f5f51b; /* optional border */
}

/* Apply text color to dropdown items */
.dropdown-menu .dropdown-item {
    color: #f5f51b;
}

/* Optional: hover effect for dropdown items */
.dropdown-menu .dropdown-item:hover {
    background-color: var(--light-blue-hover);
    color: var(--brand-blue-dark);
    font-weight: bold;
}
/*--------------------------------------------------------------------------------------------------------------*/

/* ✅ 1. Primary Navbar band */
.navbar{
    background-color: var(--brand-blue-dark);
}

/* ✅ 2. unknown */
.navbar.nav-link{
    color: #ffffff;
    transition: color 0.3s ease;
}

/* ✅ 3. Selection lien */
.navbar .nav-link:hover,
.navbar .nav-link.active{
    color: #f5f51b;
}

/* ✅ 4. unknown */
.navbar .navbar-brand{
    color: #ffffff;
    font-weight: bold;
}

/* ✅ 5. LOGO */
.navbar-brand img {
  height: 40px;
  display: flex;
  position: fixed;
}
/*--------------------------------------------------------------------------------------------------------------*/

.quote-btn {
  font-weight: 500;
  margin-right: 15px;
  background-color: #f8f9fa;
  color: #333;
  transition: background-color 0.3s ease;
}

.quote-btn:hover {
  /* RFQ Button */
  background-color: #aa0000;
  color: #fbee7d;
}

#openQuote {
  margin-top: 2px;
  margin-bottom: 0px;
  margin-left: 10px;
  margin-right: 15px;
}
/*--------------------------------------------------------------------------------------------------------------*/

.footer {
  background-color:var(--brand-blue-dark);/* #b6d3e5*/
  border-top: 1px solid #c4bdbd;
  padding: 40px 20px;
  color: #fff;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.column {
  flex: 1 1 250px;
}

.footer h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a { /* footer text */
  color: var(--text-footer);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #fbff00;
  text-decoration: underline;
}

.quote-btn {
  font-weight: bold;
  color: #99b9f0;
  padding: 4px 1px;
}

.quote-btn:hover {
  color: #fbff00;
}
/*--------------------------------------------------------------------------------------------------------------*/

@media (max-width: 768px) {
  .columns {
  flex-direction: column;
  align-items: flex-start;
  }
}
/*--------------------------------------------------------------------------------------------------------------*/


.footer-bottom {
  background-color: var(--footer-border); /* or another footer color */
  color: var(--text-light);                 /* e.g. white */
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}
/*--------------------------------------------------------------------------------------------------------------*/

/* Modal Background */
.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(128, 233, 202, 0.6);
}
/*--------------------------------------------------------------------------------------------------------------*/

/* ✅ 1. Primary Brand Color */
:root {
  --brand-blue: #002f81;
  --brand-blue-light: #1947a1; /* lighter variant for hover */
  --brand-blue-dark: #001d4f;  /* darker variant */
  --text-light: #ffffff;
  --text-footer: #93d2f7;
  --text-dark: #1a1a1a;
  --light-blue-hover: #a5c9ff; /* light blue on hover */
  --footer-border: #360000; /* Plainte en rouge */
}
